iT邦幫忙

2024 iThome 鐵人賽

DAY 4
0
Python

30天自學Python系列 第 4

列表與字典的基本操作

  • 分享至 

  • xImage
  •  

今天是鐵人賽的第四天,我學習列表的應用。

創建列表
fruits = ['apple', 'banana', 'cherry']

訪問元素
first_fruit = fruits[0]
print('第一個水果:', first_fruit)

添加元素
fruits.append('orange')
print('更新後的水果列表:', fruits)

刪除元素
fruits.remove('banana')
print('刪除香蕉後的水果列表:', fruits)

遍歷列表
print('遍歷水果列表:')
for fruit in fruits:
print(fruit)


上一篇
加深對變數和資料型別的理解
下一篇
列表與字典的基本操作
系列文
30天自學Python30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言